home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / XMLXSLT / XSLTfiles / emp_xsl_uk.xsl < prev    next >
Encoding:
Text File  |  2000-12-10  |  452 b   |  15 lines

  1. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0">
  2. <xsl:output omit-xml-declaration="yes" />
  3.   
  4.   <xsl:template match="employees">
  5.  
  6.     <xsl:for-each select="employee">
  7.     
  8.     <xsl:if test="emp_salary[@currency = 'UKP']">
  9.     <xsl:value-of select="@emp_no" />,<xsl:value-of select="emp_lastname" />,<xsl:value-of select="emp_firstname" />
  10.     
  11.     </xsl:if>
  12.      </xsl:for-each>
  13.      
  14.   </xsl:template>
  15. </xsl:stylesheet>